projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
684602b
)
* subr.el (listify-key-sequence): Use a character constant to
author
Jim Blandy
<jimb@redhat.com>
Mon, 3 May 1993 03:40:40 +0000
(
03:40
+0000)
committer
Jim Blandy
<jimb@redhat.com>
Mon, 3 May 1993 03:40:40 +0000
(
03:40
+0000)
decide which bits to flip, not an integer constant.
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index 932bf0b96c4d92d99c68595fcbcadd6988917efb..74c8968fc1c06920d9380b38dd310d9aadfdd951 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-236,7
+236,7
@@
The normal global definition of the character C-x indirects to this keymap.")
(append key nil)
(mapcar (function (lambda (c)
(if (> c 127)
- (logxor c
8388736
)
+ (logxor c
?\M-\200
)
c)))
(append key nil))))